home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / include / stdlib.h < prev    next >
C/C++ Source or Header  |  1996-01-31  |  356b  |  15 lines

  1. #ifndef _UNIX_STDLIB_H
  2. #define _UNIX_STDLIB_H
  3. #include "include:stdlib.h"
  4. #ifndef _ANSI_SOURCE
  5. int setenv(const char *, const char *, int);
  6. #ifndef _POSIX_SOURCE
  7. extern    char *optarg;            /* getopt(3) external variables */
  8. extern    int optind;
  9. extern    int opterr;
  10. int    getopt (int, char * const *, const char *);
  11. void unsetenv(const char *);
  12. #endif
  13. #endif
  14. #endif
  15.